@extends('layouts.app') @section('title') Create New Project @stop @section('breadcrumb') @stop @section('css') @stop @section('content')
{{ csrf_field() }}
@if ($errors->any())

Errors

    {!! implode( '', $errors->all('
  • :message
  • '), ) !!}
@endif

Create New Project

Add the information


@if ($errors->has('project_name')) {{ $errors->first('project_name') }} @endif
{{--
--}}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@stop @section('js') @stop