@extends('admin.layout.master') @section('import-css') @stop @section('body')

{{$page_title}} Back

{{ csrf_field() }}
Name
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Designation
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif

Image
...
Select image Change Remove
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Message
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif


@endsection @section('import-script') @stop @section('script') @stop