{!! Form::open(['method' => 'put','url' => '/admin/footer/'. $footer_content->footer_id]) !!}
{!! Form::label('First Content') !!}
{!! Form::textarea('first_content',$footer_content->first_content, ['class' => 'form-control', 'id' => 'first_content']) !!}
@if ($errors->has('first_content'))
{!! $errors->first('first_content') !!}@endif
{!! Form::label('Second Content') !!}
{!! Form::textarea('second_content', $footer_content->second_content, ['class' => 'form-control', 'id' => 'second_content']) !!}
@if ($errors->has('second_content'))
{!! $errors->first('second_content') !!}@endif
{!! Form::label('Third Content') !!}
{!! Form::textarea('third_content', $footer_content->third_content, ['class' => 'form-control', 'id' => 'third_content']) !!}
@if ($errors->has('third_content'))
{!! $errors->first('third_content') !!}@endif
{!! Form::label('Fourth Content') !!}
{!! Form::textarea('fourth_content', $footer_content->fourth_content, ['class' => 'form-control', 'id' => 'fourth_content']) !!}
@if ($errors->has('fourth_content'))
{!! $errors->first('fourth_content') !!}@endif