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

Edit Player From Players

Edit Player

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

Upload maximum size of 2MB.

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