Photo (Note: Height and width should be equal)
@if( isset($happyStory) && !empty(url('/'.$happyStory->photo_url)))
Photo
@endif
{{Form::text('title', null,['id' => 'title','class'=>'form-control'])}} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{{Form::textarea('description', null,['id' => 'description','class'=>'form-control'])}} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{Form::text('married_at',null,['id' => 'married_at','class'=>'form-control datetimepicker-input', 'data-target'=> '#datepicker','data-toggle'=>'datetimepicker'])}}
@if ($errors->has('married_at')) {{ $errors->first('married_at') }} @endif
{{Form::select('status',['1'=>'Active','0'=>'InActive'], 'null',['id' => 'status','class'=>'form-control '])}} @if ($errors->has('status')) {{ $errors->first('status') }} @endif