@extends('user::layouts.master') @section('content')

Import Gantt

@include('layouts.flash.alert')
@csrf
{{ Form::label('project_id', 'Project') }}* {{ Form::select('project_id', $allProjects, old('project_id'), [ 'class' => "form-control select2-input", 'id' => "project_id", 'data-live-search'=>'true', ]) }} @if($errors->has('project_id')) {{ $errors->first('project_id') }} @endif
{{ Form::label('file', 'File') }}* {{ Form::file('file', [ 'class' => "form-control", 'id' => "file", ]) }} @if($errors->has('file')) {{ $errors->first('file') }} @endif
{{Form::submit('Submit', [ 'class' => "btn btn-primary btn-flat" ])}}
@stop