@extends('layouts.default') @section('content')

About Us

Update About Us
@include('layouts.flash')
{!! Form::model($target, array('route' => array('about_us_immigration.update'), 'method' => 'PUT', 'class' => 'form-horizontal', 'id' => 'userId','files'=> true)) !!}
{!! Form::text('title_1', old('title_1'), array('id'=> 'title_1', 'class' => 'form-control', 'required' => 'true')) !!} {!! $errors->first('title_1') !!}
{!! Form::text('bn_title_1', old('bn_title_1'), array('id'=> 'bn_title_1', 'class' => 'form-control')) !!} {!! $errors->first('bn_title_1') !!}
{!! Form::text('title_2', old('title_2'), array('id'=> 'title_2', 'class' => 'form-control', 'required' => 'true')) !!} {!! $errors->first('title_2') !!}
{!! Form::text('bn_title_2', old('bn_title_2'), array('id'=> 'bn_title_2', 'class' => 'form-control')) !!} {!! $errors->first('bn_title_2') !!}


{!! Form::textarea('body', Input::old('body'), array('id'=> 'body', 'class' => 'form-control fullEditor')) !!}


{!! Form::textarea('bn_body', Input::old('bn_body'), array('id'=> 'bn_body', 'class' => 'form-control fullEditor')) !!}
@if($target->image != null)

@endif {!! Form::file('image',old('image'), array('id'=> 'image', 'class' => 'form-control', 'required' => 'true')) !!} {!! $errors->first('image') !!}
{!! Form::close() !!}
@stop @section('js') @endsection