@extends('admin.layouts.app') @section('title', 'Main page') @section('content')
@if($errors) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
{{csrf_field()}}
{{ $errors->first('first_name') }}
{{ $errors->first('last_name') }}
{{ $errors->first('address') }}
{{ $errors->first('mobile') }}
{{ $errors->first('email') }}
{{ $errors->first('state') }}
{{ $errors->first('city') }}
{{ $errors->first('postal_code') }}
@endsection