@include('includes.admin.header') @include('includes.admin.sidebar')

Add Players From Players

Add New Player

{!! Form::open(['class' => 'form-horizontal', 'method' => 'post', 'files' => true]) !!} @if ($errors->any())
{{ implode('', $errors->all('
:message
')) }}
@endif
{!! Form::text('data[name]', '', ['class' => 'form-control', 'placeholder' => 'Name']); !!}
{!! Form::date('data[dob]', '', ['class' => 'form-control', 'placeholder' => 'DOB']); !!}
{!! Form::select('data[position][]',$positions,'',['class' => 'form-control', 'multiple' => 'multiple'])!!}
{!! Form::text('data[value]',0,['class' => 'form-control'])!!}
{!! Form::text('data[tshirt_number]','',['class' => 'form-control'])!!}
{!! Form::textarea('data[contact_player_information]','',['class' => 'form-control'])!!}
{!! Form::select('data[status]',['Available' => 'Available', 'Recovering' => 'Recovering', 'Suspended' => 'Suspended', 'Injured' => 'Injured'],'',['class' => 'form-control'])!!}

Upload maximum size of 2MB.

{!! Form::close() !!}
@include('includes.admin.footer')