@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.project.title_singular') }}
@csrf
@if($errors->has('title')) {{ $errors->first('title') }} @endif {{ trans('cruds.project.fields.title_helper') }}
@if($errors->has('image')) {{ $errors->first('image') }} @endif {{ trans('cruds.project.fields.image_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.project.fields.description_helper') }}
@if($errors->has('link')) {{ $errors->first('link') }} @endif {{ trans('cruds.project.fields.link_helper') }}
@foreach(App\Models\Project::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.project.fields.status_helper') }}
@endsection @section('scripts') @endsection