{!! Form::open([
'url' => action('App\Http\Controllers\CenterController@update', [$center->id]),
'method' => 'PUT',
'files' => true,
'id' => 'company_add_form',
'enctype' => 'multipart/form-data',
]) !!}
{!! Form::label('photo','Photo *', ['class' => 'form-label']) !!}
{!! Form::label('password','Passowrd *', ['class' => 'form-label']) !!}
{!! Form::text('password',null, ['class' => 'form-control','placeholder' => 'Enter Passowrd', 'required']); !!}
{!! Form::label('name','Name *', ['class' => 'form-label']) !!}
{!! Form::text('name',$center->name, ['class' => 'form-control','placeholder' => 'Enter name', 'required']); !!}
{!! Form::label('father_name','Father Name *', ['class' => 'form-label']) !!}
{!! Form::text('father_name',$center->father_name, ['class' => 'form-control','placeholder' => 'Enter Father name', 'required']); !!}
{!! Form::label('dob','DOB *', ['class' => 'form-label']) !!}
{!! Form::date('dob',$center->dob, ['class' => 'form-control','placeholder' => 'Enter dob', 'required']); !!}
{!! Form::label('mobilenumber','Mobile Number *', ['class' => 'form-label']) !!}
{!! Form::number('mobilenumber',$center->mobilenumber, ['class' => 'form-control','placeholder' => 'Enter mobile number', 'required']); !!}
{!! Form::label('address','Address *', ['class' => 'form-label']) !!}
{!! Form::text('address',$center->address, ['class' => 'form-control','placeholder' => 'Enter address', 'required']); !!}
{!! Form::label('status','Status *', ['class' => 'form-label']) !!}
{!! Form::select('status',['Active'=>'Active','Inactive'=>'Inactive'],$center->status, ['class' => 'form-control','placeholder' => 'Select status ?', 'required']); !!}