@extends('layouts.app') @section('title', 'Create Project | ') @section('content')
{{ Form::open(array('url' => 'project/store', 'files' => true)) }}

Project Details (New Project)

@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::textarea('description', null, ['class' => 'form-control summernote', 'placeholder' => 'Project description...']) !!} @if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif (If Project Type is re-curing work, so there is no required deadline. )
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@if ($errors->has('actual_start_date'))
{{ $errors->first('actual_start_date') }}
@endif (System will track from this date. )
@if ($errors->has('project_leader'))
{{ $errors->first('project_leader') }}
@endif (Who will be responsible for all project activity.)
To add a teammate who’s not on Techsaga, you need to Create Them First
To add a Client who’s not on Techsaga, you need to Invite Them First

Tip: Better tracking, Next step create module with deadline and their task.

{!! Form::close() !!}
@stack('scripts') @endsection